home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / fortran / fckdemo1.zip / GLOBARG2.LST < prev    next >
File List  |  1994-04-12  |  544b  |  25 lines

  1. c
  2. c                       FORCHECK
  3. c               Global Argument Verification 2
  4.  
  5.         PROGRAM Draw
  6.         DO i = 1, 2
  7.           CALL Plot (x, y, i)
  8.         ENDDO
  9.         END
  10.  
  11.  
  12.         SUBROUTINE Plot (x, y, ipen)
  13.         CALL Draw (x, y, ipen)
  14.         ipen = ipen - 10
  15.         END
  16.  
  17.  FORCHECK PC V11.10  MS5 compiler emulation  20-Jan-94  11:33:29  page: 1
  18.  GLOBARG2.FOR  
  19.  
  20.  
  21.  global program analysis:
  22.  
  23.    PLOT, referenced in DRAW, argument no  3
  24.  **[299 E] illegal assignment, actual argument is active DO variable
  25.